home *** CD-ROM | disk | FTP | other *** search
/ Windows News 1997 February / Windows News CD #1 - Fev 97.iso / share / animator / about.c next >
Encoding:
C/C++ Source or Header  |  1997-01-22  |  435 b   |  17 lines

  1. #include "animator.h"
  2.  
  3. //////////////////////////////////////////////////////////////////////////
  4. // About - Window procedure for the about box shown when choosing 
  5. //         File About...
  6. //////////////////////////////////////////////////////////////////////////
  7.  
  8. BOOL _export CALLBACK About(DLGPROC_PARAMS)
  9. {
  10.     if (uMsg == WM_COMMAND && wParam == IDOK)
  11.     {
  12.         EndDialog (hDlg, TRUE);
  13.         return TRUE;
  14.     }
  15.     return FALSE;
  16. }
  17.